home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / automake-1.5 / am / java.am < prev    next >
Encoding:
Text File  |  2005-10-16  |  2.3 KB  |  87 lines

  1. ## automake - create Makefile.in from Makefile.am
  2. ## Copyright 1998, 1999, 2001 Free Software Foundation, Inc.
  3.  
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8.  
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ## GNU General Public License for more details.
  13.  
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with this program; if not, write to the Free Software
  16. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. ## 02111-1307, USA.
  18.  
  19.  
  20. ## ---------- ##
  21. ## Building.  ##
  22. ## ---------- ##
  23.  
  24. JAVAC = javac
  25. JAVACFLAGS =
  26. CLASSPATH_ENV = CLASSPATH=$(JAVAROOT):$(srcdir)/$(JAVAROOT):$$CLASSPATH
  27. JAVAROOT = $(top_builddir)
  28.  
  29. class%DIR%.stamp: $(%DIR%_JAVA)
  30.     $(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) \
  31.       $(AM_JAVACFLAGS) $(JAVACFLAGS) $?
  32.     echo timestamp > class%DIR%.stamp
  33.  
  34.  
  35. ## ------------ ##
  36. ## Installing.  ##
  37. ## ------------ ##
  38.  
  39. if %?INSTALL%
  40. _am_installdirs += $(DESTDIR)$(%NDIR%dir)
  41. ?EXEC?.PHONY install-exec-am: install-%DIR%JAVA
  42. ?!EXEC?.PHONY install-data-am: install-%DIR%JAVA
  43. install-%DIR%JAVA: class%DIR%.stamp
  44.     @$(NORMAL_INSTALL)
  45.     $(mkinstalldirs) $(DESTDIR)$(%NDIR%dir)
  46. ## A single .java file can be compiled into multiple .class files.  So
  47. ## we just install all the .class files that got built into this
  48. ## directory.  This is not optimal, but will have to do for now.
  49.     for p in *.class; do \
  50.       echo " $(INSTALL_DATA) $$p $(DESTDIR)$(%NDIR%dir)/$$p"; \
  51.       $(INSTALL_DATA) $$p $(DESTDIR)$(%NDIR%dir)/$$p; \
  52.     done
  53. endif %?INSTALL%
  54.  
  55.  
  56. ## -------------- ##
  57. ## Uninstalling.  ##
  58. ## -------------- ##
  59.  
  60. if %?INSTALL%
  61. .PHONY uninstall-am: uninstall-%DIR%JAVA
  62. uninstall-%DIR%JAVA:
  63.     @$(NORMAL_UNINSTALL)
  64.     @for p in *.class; do \
  65.       echo " rm -f $(DESTDIR)$(%NDIR%dir)/$$p"; \
  66.       rm -f $(DESTDIR)$(%NDIR%dir)/$$p; \
  67.     done
  68. endif %?INSTALL%
  69.  
  70.  
  71. ## ---------- ##
  72. ## Cleaning.  ##
  73. ## ---------- ##
  74.  
  75. .PHONY clean-am: clean-%DIR%JAVA
  76. clean-%DIR%JAVA:
  77.     -rm -f *.class class%DIR%.stamp
  78.  
  79.  
  80. ## -------------- ##
  81. ## Distributing.  ##
  82. ## -------------- ##
  83.  
  84. if %?DIST%
  85. DIST_COMMON += $(%DIR%_JAVA)
  86. endif %?DIST%
  87.